λ bun test
https://bun.sh/docs/cli/test
tsconfigのtypesに"bun"を追加
code:tsconfig.json
{
"compilerOptions": {
"types": "bun",
}
}
↑これをしないと、型エラーになる
code:ts
import { expect, test } from 'bun:test';
// ↑エラー
Test runner
bun test
Writing tests
Watch mode
Lifecycle hooks
Mocks
Snapshot Testing
Dates and times
DOM testing
Code coverage
test coverage